home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python151_Src.lha / Python1.5_Source / Python / protos / marshal_protos2.h < prev    next >
Text File  |  1998-01-26  |  482b  |  12 lines

  1. /* marshal.c 2 */
  2.  
  3. static int r_string ( char *s , int n , RFILE *p );
  4. static int r_short ( RFILE *p );
  5. static long r_long ( RFILE *p );
  6. static long r_long64 ( RFILE *p );
  7. static PyObject *r_object ( RFILE *p );
  8. static PyObject *marshal_dump ( PyObject *self , PyObject *args );
  9. static PyObject *marshal_load ( PyObject *self , PyObject *args );
  10. static PyObject *marshal_dumps ( PyObject *self , PyObject *args );
  11. static PyObject *marshal_loads ( PyObject *self , PyObject *args );
  12.